-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[fix] Add OpenSSL ini config for PHP with custom cafile path #44
Conversation
@davidbeig SSL works fine on the pipeline, maybe we can leave the custom |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi!
I have just added the curl command to the Dockerfile, since it's in the base image it will be shared with the dev and prod envs.
What i don't get is the volumes that you are adding. Since we need the image to come with the file already in it, how's that you add it also to the docker-compose? In case we update it locally?
Could you try that the last commit works as expected?
There is an issue due to filenaming mismatch. PHP was instructed to use the file from Regarding on why the volumes:
You can resolve the path namings as you wish. Thanks! |
Works like a charm now! I moved the testing volume to the override compose config. Can we also merge #45 now? |
Solution for #43, a path is set to use a custom
cafile
for OpenSSL.@davidbeig can you help me put the code in place to get the file from https://curl.se/docs/caextract.html in the docker build step? Thank you!